chore(main): release dev.openfeature.contrib.providers.flipt 0.1.4#1706
Conversation
Signed-off-by: OpenFeature Bot <109696520+openfeaturebot@users.noreply.github.com>
Summary of ChangesHello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request automates the release of version Highlights
Changelog
Activity
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request prepares the release of dev.openfeature.contrib.providers.flipt version 0.1.4. The main change in this version is a security fix related to the com.fasterxml.jackson.core:jackson-core dependency. However, my review identified a critical issue with how this fix was applied. The updated dependency is scoped for testing only, which means the published artifact will still use the vulnerable version. This needs to be corrected before merging.
|
|
||
| ### 🐛 Bug Fixes | ||
|
|
||
| * **security:** update dependency com.fasterxml.jackson.core:jackson-core to v2.21.1 [security] ([#1705](https://github.com/open-feature/java-sdk-contrib/issues/1705)) ([7760d09](https://github.com/open-feature/java-sdk-contrib/commit/7760d098b6c965c5a299e274ddf790e10b967738)) |
There was a problem hiding this comment.
The security fix mentioned in this changelog entry for com.fasterxml.jackson.core:jackson-core appears to be incorrectly implemented. In the providers/flipt/pom.xml file, the updated dependency is defined with <scope>test</scope>:
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.21.1</version>
<scope>test</scope>
</dependency>This configuration means the updated, secure version of jackson-core is only used during the test phase and is not included in the final artifact. The artifact will instead use the older, vulnerable version brought in as a transitive dependency from jackson-databind. To ensure the security fix is effective, the <scope>test</scope> should be removed from the jackson-core dependency declaration.
🤖 I have created a release beep boop
0.1.4 (2026-03-02)
🐛 Bug Fixes
This PR was generated with Release Please. See documentation.